home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / FileWriter.java < prev    next >
Text File  |  1998-09-22  |  1KB  |  51 lines

  1. /*
  2.  * @(#)FileWriter.java    1.5 98/07/01
  3.  *
  4.  * Copyright 1995-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.io;
  16.  
  17.  
  18. /**
  19.  * Convenience class for writing character files.  The constructors of this
  20.  * class assume that the default character encoding and the default byte-buffer
  21.  * size are acceptable.  To specify these values yourself, construct an
  22.  * OutputStreamWriter on a FileOutputStream.
  23.  *
  24.  * @see OutputStreamWriter
  25.  * @see FileOutputStream
  26.  *
  27.  * @version     1.5, 98/07/01
  28.  * @author    Mark Reinhold
  29.  * @since    JDK1.1
  30.  */
  31.  
  32. public class FileWriter extends OutputStreamWriter {
  33.  
  34.     public FileWriter(String fileName) throws IOException {
  35.     super(new FileOutputStream(fileName));
  36.     }
  37.  
  38.     public FileWriter(String fileName, boolean append) throws IOException {
  39.     super(new FileOutputStream(fileName, append));
  40.     }
  41.  
  42.     public FileWriter(File file) throws IOException {
  43.     super(new FileOutputStream(file));
  44.     }
  45.  
  46.     public FileWriter(FileDescriptor fd) {
  47.     super(new FileOutputStream(fd));
  48.     }
  49.  
  50. }
  51.